02. Talk to the Zoo Database
Talk to the Zoo Database
Question:
Start Quiz:
# Try out this query! You'll see the results below.
# You'll be seeing many more pages like this in the rest of this lesson.
# For now, just test it out.
QUERY = '''
select name, birthdate from animals where species = 'gorilla';
'''
User's Answer:
(Note: The answer done by the user is not guaranteed to be correct)
# Try out this query! You'll see the results below.
# You'll be seeing many more pages like this in the rest of this lesson.
# For now, just test it out.
QUERY = '''
select name, birthdate from animals where species = 'gorilla';
'''